home *** CD-ROM | disk | FTP | other *** search
/ Windows Expert / Windows Expert.iso / utility / wxlslib.zip / xlsx.h < prev   
C/C++ Source or Header  |  1992-02-20  |  667b  |  16 lines

  1. /* xlsx.h - Include file for external Macintosh routines.              */
  2. /* XLISP-STAT 2.1 Copyright (c) 1990, by Luke Tierney                  */
  3. /* Additions to Xlisp 2.1, Copyright (c) 1989 by David Michael Betz    */
  4. /* You may give out copies of this software; for conditions see the    */
  5. /* file COPYING included with this distribution.                       */
  6.  
  7. /* Calling conventions are based on the conventions given in the New S */
  8. /* book.                                                               */
  9. typedef struct {
  10.   int argc;
  11.   char **argv;
  12. } XLSXblock;
  13.  
  14. #define XLSXargc(p)    ((p)->argc)
  15. #define XLSXargv(p, i) ((p)->argv[(i)])
  16.